home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / wsfont / confirms.frm < prev    next >
Text File  |  1995-05-02  |  2KB  |  66 lines

  1. VERSION 2.00
  2. Begin Form ConfirmScreen 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Font Manager"
  6.    ClientHeight    =   2250
  7.    ClientLeft      =   2310
  8.    ClientTop       =   2610
  9.    ClientWidth     =   5835
  10.    ControlBox      =   0   'False
  11.    Height          =   2655
  12.    Left            =   2250
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2250
  17.    ScaleWidth      =   5835
  18.    Top             =   2265
  19.    Width           =   5955
  20.    Begin CommandButton Command1 
  21.       Cancel          =   -1  'True
  22.       Caption         =   "Skip It"
  23.       Default         =   -1  'True
  24.       Height          =   375
  25.       Index           =   1
  26.       Left            =   3480
  27.       TabIndex        =   2
  28.       Top             =   1560
  29.       Width           =   1095
  30.    End
  31.    Begin CommandButton Command1 
  32.       Caption         =   "Yes"
  33.       Height          =   375
  34.       Index           =   0
  35.       Left            =   960
  36.       TabIndex        =   1
  37.       Top             =   1560
  38.       Width           =   1095
  39.    End
  40.    Begin Label Label1 
  41.       BackStyle       =   0  'Transparent
  42.       Caption         =   "Label1"
  43.       Height          =   1335
  44.       Left            =   240
  45.       TabIndex        =   0
  46.       Top             =   120
  47.       Width           =   5175
  48.    End
  49. End
  50. Option Explicit
  51.  
  52. Sub Command1_Click (Index As Integer)
  53. Select Case Index
  54. Case 0
  55.    MoveBasic% = True
  56. Case 1
  57.    MoveBasic% = False
  58. End Select
  59. Unload Me
  60. End Sub
  61.  
  62. Sub Form_Load ()
  63. Label1 = TestFont$ + " is one of the basic fonts installed with Windows 3.1." + CRLF$ + CRLF$ & "If you remove this font, applications that rely upon it may not work properly. Do you still want to move this font to the reserve list?"
  64. End Sub
  65.  
  66.